home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 12 - 1996 / 12.10 Oct 96 / GettingStarted / noLayout.java < prev   
Encoding:
Java Source  |  1996-09-11  |  289 b   |  14 lines  |  [TEXT/R*ch]

  1. import java.awt.*;
  2.  
  3. public class noLayout extends java.applet.Applet
  4. {
  5.     public noLayout()
  6.     {
  7.         add( new Label( "Enter your name:" ) );
  8.         add( new TextField( "<Your name here>", 30 ) );
  9.         add( new Button( "Eeny" ) );
  10.         add( new Button( "Meeny" ) );
  11.         add( new Button( "Miney-Moe" ) );
  12.     }
  13. }
  14.